// TOWN SPECIAL ENCOUNTERS
//    Town 158: Wainscotting

beginzonescript;

variables;

short im_hostile = 0;
short max_crime = 200;
short last_abil;
short counter = 0;
short set_ter = 0;

body;

beginstate INIT_STATE;
	last_abil = get_current_tick();

//	set_name(,);
//	add_range_to_group(,,groupn);

	set_personality_name(3160,"Yar");
	set_personality_name(3161,"Abruzzo");

	set_crime_tolerance(max_crime);

	break;

beginstate EXIT_STATE;
break;

beginstate START_STATE;
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15805,"Wash your hands, please.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15805,"Don't dirty my books.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15805,"You can actually read!");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15805,"I get so few visitors.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15804,"Saw bandits up north.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15804,"We got rooms.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15804,"No sailors coming through.");
	if (get_ran(1,0,100) < 10)
		give_char_text_bubble(15804,"Good rotgut right here.");

break;

beginstate 10;
break;

beginstate 11;
break;

beginstate 12;
break;

beginstate 13;
break;

beginstate 14;
break;

//	print_str("");
//	set_terrain_string_range("",1);
//	set_terrain_string_range("The sign says - .",1);

